home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / feel0_89.lha / Feel / Src / lex_global.h < prev    next >
C/C++ Source or Header  |  1993-02-02  |  701b  |  37 lines

  1. /* $Id: lex_global.h,v 2.1 93/01/17 17:52:20 pab Exp $ */
  2. /* $Log:    lex_global.h,v $
  3.  * Revision 2.1  93/01/17  17:52:20  pab
  4.  * fixed trivial problem
  5.  * 
  6.  * Revision 1.2  1992/11/26  15:54:11  pab
  7.  * Change for new reader
  8.  *
  9.  * Revision 1.1  1991/08/12  16:49:43  pab
  10.  * Initial revision
  11.  *
  12.  * Revision 1.2  1991/02/11  17:56:59  is
  13.  * Added ID and LOG headers
  14.  *
  15. */
  16.  
  17. typedef struct 
  18. {
  19.   LispObject lispval;
  20. } pptoken;
  21.  
  22. extern pptoken pptok;
  23.  
  24. #define    IDENTIFIER    258
  25. #define    INTEGER        259
  26. #define    RATIONAL    260
  27. #define    FLOAT        261
  28. #define    CHARACTER    262
  29. #define    STRING        263
  30. #define WRAPPER        264
  31. #define    EXTENSION    268
  32. #define    OPEN_PAIR    269
  33. #define    CLOSE_PAIR    270
  34. #define    DOT        271
  35. #define    END_OF_STREAM    272
  36.  
  37.